home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-03
/
qbasicpg.zip
/
FOR-2.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1989-08-31
|
137 b
|
10 lines
' FOR-2.BAS
' This program demonstrates the FOR loop.
CLS
FOR i% = 6 TO 5
PRINT "The current value of i% is"; i%
NEXT i%